home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / dir / RCS / seekdir.c,v < prev    next >
Text File  |  1988-07-25  |  1KB  |  64 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.06.26.15.45.59;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/*
  25.  * Copyright (c) 1983 Regents of the University of California.
  26.  * All rights reserved.  The Berkeley software License Agreement
  27.  * specifies the terms and conditions for redistribution.
  28.  */
  29.  
  30. #if defined(LIBC_SCCS) && !defined(lint)
  31. static char sccsid[] = "@@(#)seekdir.c    5.2 (Berkeley) 3/9/86";
  32. #endif LIBC_SCCS and not lint
  33.  
  34. #include <sys/param.h>
  35. #include <sys/dir.h>
  36.  
  37. /*
  38.  * seek to an entry in a directory.
  39.  * Only values returned by "telldir" should be passed to seekdir.
  40.  */
  41. void
  42. seekdir(dirp, loc)
  43.     register DIR *dirp;
  44.     long loc;
  45. {
  46.     long curloc, base, offset;
  47.     struct direct *dp;
  48.     extern long lseek();
  49.  
  50.     curloc = telldir(dirp);
  51.     if (loc == curloc)
  52.         return;
  53.     base = loc & ~(DIRBLKSIZ - 1);
  54.     offset = loc & (DIRBLKSIZ - 1);
  55.     (void) lseek(dirp->dd_fd, base, 0);
  56.     dirp->dd_loc = 0;
  57.     while (dirp->dd_loc < offset) {
  58.         dp = readdir(dirp);
  59.         if (dp == NULL)
  60.             return;
  61.     }
  62. }
  63. @
  64.